home *** CD-ROM | disk | FTP | other *** search
- #ifndef _PULSE_H
- #define _PULSE_H
- #include <windows.h>
- /*
- logical values, menu items
- */
- #define ID_TIMER 1000
- #define MI_PULSE 100
- #define MI_MAXPULSE 102
- #define MI_MINPULSE 103
- #define BUFMAX 256
- /*
- global variables
- */
- #ifndef GLOBALS
- #define ALLOC extern
- #else
- #define ALLOC
- #endif
- ALLOC int Mode; /* current display mode */
- ALLOC int nXPos, nYPos; /* screen location */
- int PASCAL WinMain(HINSTANCE, HINSTANCE, LPSTR, int);
- BOOL InitApplication(HINSTANCE);
- BOOL InitInstance(HINSTANCE, int);
- long FAR PASCAL MainWndProc(HWND, UINT, WPARAM, LPARAM);
- void GetIni(void);
- void PutIni(void);
- #endif
-
-